home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / fprintf.c < prev    next >
C/C++ Source or Header  |  1988-07-28  |  2KB  |  69 lines

  1. /* 
  2.  * fprintf.c --
  3.  *
  4.  *    Source code for the "fprintf" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: fprintf.c,v 1.6 88/07/28 17:18:33 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdio.h>
  21. #include <varargs.h>
  22.  
  23. /*
  24.  *----------------------------------------------------------------------
  25.  *
  26.  * fprintf --
  27.  *
  28.  *    Format and print one or more values, writing the output onto
  29.  *    stream.  See the manual page for details of how the format
  30.  *    string is interpreted.
  31.  *
  32.  * Results:
  33.  *    The return value is a count of the number of characters
  34.  *    written to stream.
  35.  *
  36.  * Side effects:
  37.  *    None.
  38.  *
  39.  *----------------------------------------------------------------------
  40.  */
  41.  
  42. #ifndef lint
  43. int
  44. fprintf(va_alist)
  45.     va_dcl            /* FILE *stream, then char *format, then any
  46.                  * number of additional values to be printed
  47.                  * as described by format. */ 
  48. {
  49.     FILE *stream;
  50.     char *format;
  51.     va_list args;
  52.  
  53.     va_start(args);
  54.     stream = va_arg(args, FILE *);
  55.     format = va_arg(args, char *);
  56.     return vfprintf(stream, format, args);
  57. }
  58. #else
  59. /* VARARGS2 */
  60. /* ARGSUSED */
  61. int
  62. fprintf(stream, format)
  63.     FILE *stream;
  64.     char *format;
  65. {
  66.     return 0;
  67. }
  68. #endif lint
  69.